home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 February: Tool Chest / Apple Developer CD Series Tool Chest February 1996 (Apple Computer)(1996).iso / Tool Chest / Development Tools & Languages / Dylan Related / Marlais / MacMarlais 0.5.9d46 / Examples / Windows.lid < prev   
Encoding:
Text File  |  1995-01-09  |  627 b   |  27 lines  |  [TEXT/Mrls]

  1. module:            dylan-user
  2. author:            Patrick C. Beard <beard@cs.ucdavis.edu>
  3. description:        Definition of the Windows module.
  4.  
  5. define module Windows
  6.    use dylan, export: all;
  7.    export
  8.     // classes.
  9.     <window>, <text-style>, <window-or-false>,
  10.  
  11.     // public methods.
  12.     window-dispose, window-erase, window-draw-line,
  13.     window-move-to, window-draw-string,
  14.     front-window, next-window,
  15.     
  16.     // text style constants.
  17.     $bold, $italic, $outline,
  18.     $shadow, $condense, $extend,
  19.     
  20.     // slot setters.
  21.     title-setter, bounds-setter, visible-setter,
  22.     pen-size-setter, text-style-setter,
  23.     
  24.     // private methods.
  25.     dispatch-window-update;
  26. end module Windows;
  27.